home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1994 October / Macformat17.cdr / Shareware City / Developers / shutdown-fx-20-c / sfx startup app ƒ / Shell ƒ / error.c < prev    next >
Text File  |  1994-07-11  |  1KB  |  45 lines

  1. /**********************************************************************\
  2.  
  3. File:        error.c
  4.  
  5. Purpose:    This module handles altering the user when an error has
  6.             occurred.
  7.  
  8. This program is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2 of the License, or
  11. (at your option) any later version.
  12.  
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with this program in a file named "GNU General Public License".
  20. If not, write to the Free Software Foundation, 675 Mass Ave,
  21. Cambridge, MA 02139, USA.
  22.  
  23. \**********************************************************************/
  24.  
  25. #include "error.h"
  26. #include "dialogs.h"
  27. #include "environment.h"
  28. #include "util.h"
  29.  
  30. void HandleError(short resultCode)
  31. /* All error codes are listed in program globals.h */
  32. {
  33.     Str255            tempStr;
  34.     
  35.     if (resultCode==0) return;
  36.     
  37.     GetIndString(tempStr, 129, resultCode);    /* get error string from .rsrc */
  38.     ParamText(tempStr, "\p", "\p", "\p");
  39.     
  40.     PositionDialog('ALRT', largeAlert);        /* position alert (see dialogs.c) */
  41.     StopAlert(largeAlert, 0L);                /* show it */
  42.     
  43.     ExitToShell();
  44. }
  45.